define([], function () { "use strict"; /** * Below Global Variable contains all the application level constants. * @namespace ApplicationConstants * @global */ var CONSTANTS = { host: "fcubs", appBaseURL: "/digx", appDefaultVersion: "v1", RTL_LOCALES: ["ar", "he"], //imageResourcePath: "./images", imageResourcePath: "images", brandPath: "", userSegment: "", module: "", region: "", bust: "1515498023691", currentServerDate: new Date(0), timezoneOffset: 0, currentEntity: "", defaultEntity: "OBDX_BU", channel: "I", isShowPopup: 0, userSegmentMap: { "CORP": "corporate", "RETAIL": "retail", "CORPADMIN": "corp-admin", "ADMIN": "admin", "ANON": "index" }, pages: { securePage: "/pages/home.html", publicPage: "/index.html" }, authenticator: "OBDXAuthenticator" }; return CONSTANTS; });